home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Programming / c-runtime / tests / SubClass4.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-18  |  304 b   |  31 lines

  1. /* -*-objc-*- */
  2.  
  3. /* 
  4.   $Header$
  5.   $Author: dglattin $
  6.   $Date$
  7.   $Log$
  8.  */
  9.  
  10. #ifndef __SUBCLASS4_H
  11. #define __SUBCLASS4_H
  12.  
  13.  
  14. #include  <SubClass1.h>
  15.  
  16. @interface SubClass4 : SubClass1 {
  17. }
  18.  
  19. + initialize;
  20. + newOther;
  21.  
  22. + ( int )return12;
  23. - ( int )return15;
  24. - ( int )return33;
  25. - ( int )return45;
  26.  
  27. @end
  28.  
  29. #endif
  30.  
  31.